type bytes.readOp
9 uses
bytes (current package)
buffer.go#L23: lastRead readOp // last read operation, so that Unread* can work correctly.
buffer.go#L36: type readOp int8
buffer.go#L41: opRead readOp = -1 // Any other read operation.
buffer.go#L42: opInvalid readOp = 0 // Non-read operation.
buffer.go#L43: opReadRune1 readOp = 1 // Read rune of size 1.
buffer.go#L44: opReadRune2 readOp = 2 // Read rune of size 2.
buffer.go#L45: opReadRune3 readOp = 3 // Read rune of size 3.
buffer.go#L46: opReadRune4 readOp = 4 // Read rune of size 4.
buffer.go#L405: b.lastRead = readOp(n)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |